
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
ml-regression-base
Advanced tools
Base class for regression modules.
This package is for ml.js internal use.
You only have to implement the _predict
method. It is always called with a number.
The model should be created in the constructor.
Optional methods that can be implemented: toString
, toLaTeX
.
import BaseRegression from 'ml-regression-base';
class MyRegression extends BaseRegression {
constructor(factor) {
super();
this.factor = factor;
}
_predict(x) {
return x * this.factor;
}
toString() {
return `f(x) = x * ${this.factor}`;
}
}
maybeToPrecision(value, digits)
Convenience method to transform numbers to readable strings.
If digits is not specified, "value.toString()" is used. Otherwise "value.toPrecision(digits)" is used.
This method can be used to implement toString()
or toLaTeX()
.
checkArrayLength(x, y)
Convenience method to check if the input and output arrays passed to a regression constructor are effectively arrays with the same length.
FAQs
Base class for regression modules
The npm package ml-regression-base receives a total of 145,977 weekly downloads. As such, ml-regression-base popularity was classified as popular.
We found that ml-regression-base demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.